From: Lars Ingebrigtsen Date: Wed, 27 Oct 2021 12:56:50 +0000 (+0200) Subject: Redisplay after changing to the hourglass mouse pointer X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~16^2~4110^2~391 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=14d835a2985379bae1540927fa422c5e35cfb792;p=emacs.git Redisplay after changing to the hourglass mouse pointer * src/xterm.c (x_show_hourglass): Do a redisplay after changing to the hourglass pointer -- otherwise it won't be displayed until a keyboard/mouse event arrives (bug#19776). --- diff --git a/src/xterm.c b/src/xterm.c index 961c61c2452..aa1a1a5eed3 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -4126,6 +4126,7 @@ x_show_hourglass (struct frame *f) XMapRaised (dpy, x->hourglass_window); XFlush (dpy); + redisplay_preserve_echo_area (21); } } }